home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex8.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  137 b   |  9 lines

  1. Program Example8;
  2.  
  3. { Program to demonstrate the Chr function. }
  4.  
  5. begin
  6.   Write (chr(10),chr(13)); { The same effect as Writeln; } 
  7. end.
  8.  
  9.